type net.conn

22 uses

	net (current package)
		iprawsock.go#L100: 	conn
		iprawsock.go#L202: func newIPConn(fd *netFD) *IPConn { return &IPConn{conn{fd}} }
		net.go#L166: type conn struct {
		net.go#L170: func (c *conn) ok() bool { return c != nil && c.fd != nil }
		net.go#L175: func (c *conn) Read(b []byte) (int, error) {
		net.go#L187: func (c *conn) Write(b []byte) (int, error) {
		net.go#L199: func (c *conn) Close() error {
		net.go#L213: func (c *conn) LocalAddr() Addr {
		net.go#L223: func (c *conn) RemoteAddr() Addr {
		net.go#L231: func (c *conn) SetDeadline(t time.Time) error {
		net.go#L242: func (c *conn) SetReadDeadline(t time.Time) error {
		net.go#L253: func (c *conn) SetWriteDeadline(t time.Time) error {
		net.go#L265: func (c *conn) SetReadBuffer(bytes int) error {
		net.go#L277: func (c *conn) SetWriteBuffer(bytes int) error {
		net.go#L294: func (c *conn) File() (f *os.File, err error) {
		tcpsock.go#L113: 	conn
		tcpsock.go#L250: 	return &TCPConn{conn{fd}}
		udpsock.go#L123: 	conn
		udpsock.go#L281: func newUDPConn(fd *netFD) *UDPConn { return &UDPConn{conn{fd}} }
		unixsock.go#L69: 	conn
		unixsock.go#L195: func newUnixConn(fd *netFD) *UnixConn { return &UnixConn{conn{fd}} }
		writev_unix.go#L14: func (c *conn) writeBuffers(v *Buffers) (int64, error) {